96128a70a4543e6989a413e49ee26166783424bf,src/reports/org/apache/jmeter/report/gui/BarChartGui.java,BarChartGui,init,#,54
Before Change
pane.add(this.getNamePanel(),BorderLayout.NORTH);
VerticalPanel options = new VerticalPanel(Color.white);
xAxis.setBackground(Color.white);
yAxis.setBackground(Color.white);
xAxisLabel.setBackground(Color.white);
yAxisLabel.setBackground(Color.white);
options.add(xAxis);
options.add(yAxis);
options.add(xAxisLabel);
options.add(yAxisLabel);
After Change
ypanel.add(checkItems);
options.add(ypanel);
JLabel xLabel = new JLabel(JMeterUtils.getResString("report_chart_x_axis"));
HorizontalPanel xpanel = new HorizontalPanel(Color.white);
xLabel.setBorder(new EmptyBorder(5,2,5,2));
xItems = new JLabeledChoice();
xItems.setBackground(Color.white);
xItems.setValues(AbstractTable.xitems);
xpanel.add(xLabel);
xpanel.add(xItems);
options.add(xpanel);
add(pane,BorderLayout.NORTH);
add(options,BorderLayout.CENTER);